home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Desktop ToolTips 3.xpl < prev    next >
Text File  |  2001-01-06  |  2KB  |  61 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="3"
  4. "UIPATH"="Appearance\Desktop\Icons\Tool Tips"
  5. "NAME"="Icon Tool Tips #3"
  6. "VERSION"="2.03"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="IE 5.0"
  9. "TEXT 2"="IE 5.5"
  10. "TEXT 3"="Outlook 2000"
  11. "DESCRIPTION 1"="If you have ActiveDesktop or Windows 2000 installed, a small yellow window (aka Tool Tip) for these items will appear on the desktop if you pass them with your mouse."
  12. "DESCRIPTION 2"="You can change these tips to anything you want."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17. "COMMENT 2"="Thanks to CptSiskoX for his help!"
  18.  
  19.  
  20. '******************************************************************
  21. '***             !!COPY!! ONLY EDIT LINES BELOW!               ****
  22. '******************************************************************
  23. sVals=Array("{3DC7A020-0ACD-11CF-A9BB-00AA004AE837}","{871C5380-42A0-1069-A2EA-08002B30309D}","{00020D75-0000-0000-C000-000000000046}")
  24. '******************************************************************
  25. '*** Keep an eye on the order (must be the same as "TEXT x") ! ****
  26. '******************************************************************
  27. sP="HKLM\Software\Classes\CLSID\"
  28. sV="InfoTip"
  29.  
  30.  
  31. Sub Plugin_Initialize 
  32.  for i=0 to UBound(sVals)
  33.      Call ReadIt(i+1,sVals(i)) 
  34.  next 
  35. End Sub
  36.  
  37. Sub ReadIt(UI,VAL)
  38.  s=RegReadValue(sp & VAL & "\" & sV)
  39.  Call SetUIElement(UI,s)
  40. End Sub
  41.  
  42.  
  43.  
  44. Sub Plugin_CheckData(ElementIndex)
  45. End Sub
  46.  
  47. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  48.  for i=0 to UBound(sVals)
  49.      Call WriteIt(i+1,sVals(i)) 
  50.  next 
  51. End Sub
  52.  
  53. Sub WriteIt(UI,VAL)
  54.  s=GetUIElement(UI)
  55.  Call RegWriteValue(sp & VAL & "\" & sV,s,1)
  56. End Sub
  57.  
  58.  
  59. Sub Plugin_Terminate 
  60. End Sub
  61.